traveller/db/migrate/20230924015422_create_peopl...

12 lines
290 B
Ruby

class CreatePeople < ActiveRecord::Migration[7.0]
def change
create_table :people do |t|
t.string :name, null: false
t.date :birth_day, null: false
t.references :birth_country, null: false, foreign_key: { to_table: :countries }
t.timestamps
end
end
end