mirror of
https://github.com/internetee/registry.git
synced 2025-05-28 16:39:55 +02:00
7 lines
231 B
Ruby
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
|