class AddCountryIdToFamilyContacts < ActiveRecord::Migration[6.0]
  def change
    add_reference :Families, :country, after: :Country1, null: true,
      foreign_key: { to_table: :iso_countries }, on_delete: :nullify
    add_reference :Families, :country_2, after: :Country2, null: true,
      foreign_key: { to_table: :iso_countries }, on_delete: :nullify
    add_reference :Contact, :country, after: :Country, null: true,
      foreign_key: { to_table: :iso_countries }, on_delete: :nullify
  end
end
