11 lines
182 B
Ruby
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
|