internetee-registry/db/migrate/20150226121252_remove_country_id_columns.rb
2015-04-02 11:39:35 +03:00

7 lines
231 B
Ruby

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