mirror of
https://github.com/internetee/registry.git
synced 2025-07-28 05:26:17 +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
|