10 lines
227 B
Ruby
10 lines
227 B
Ruby
class CreateAuthors < ActiveRecord::Migration
|
|
def change
|
|
create_table :authors do |t|
|
|
t.string :name
|
|
t.string :twitter_username
|
|
t.string :github_username
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|