mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 05:34:46 +02:00
8 lines
251 B
Ruby
8 lines
251 B
Ruby
class CleanRedundantFields < ActiveRecord::Migration[6.0]
|
|
def change
|
|
drop_table :domain_nameservers
|
|
remove_column :domains, :admin_contact_id
|
|
remove_column :domains, :technical_contact_id
|
|
remove_column :domains, :ns_set_id
|
|
end
|
|
end
|