internetee-registry/db/migrate/20150226121252_remove_country_id_columns.rb
2021-04-26 18:54:26 +05:00

7 lines
236 B
Ruby

class RemoveCountryIdColumns < ActiveRecord::Migration[6.0]
def change
remove_column :registrars, :country_id, :integer
remove_column :users, :country_id, :integer
remove_column :addresses, :country_id, :integer
end
end