class AddCountyToFamilies < ActiveRecord::Migration[6.0]
  def change
    add_column :Families, :County, :string, after: 'City1'
  end
end
