|
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
|