class AddCountryIdToSchools < ActiveRecord::Migration[6.0]
  def change
    add_reference :Schools, :country, after: :Country, null: true,
       foreign_key: { to_table: :iso_countries }, on_delete: :nullify
  end
end
