Files
old-izreke/db/migrate/20160907102456_create_authors.rb
2016-09-08 09:59:42 +02:00

11 lines
182 B
Ruby

class CreateAuthors < ActiveRecord::Migration[5.0]
def change
create_table :authors do |t|
t.string :name
t.string :unique_id
t.timestamps
end
end
end