mirror of
https://github.com/internetee/registry.git
synced 2025-06-11 23:24:48 +02:00
7 lines
236 B
Ruby
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
|