docbrown/db/migrate/20151226205806_create_authors.rb
2018-02-28 16:11:08 -05:00

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