mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
8 lines
246 B
Ruby
8 lines
246 B
Ruby
class CleanRedundantFields < ActiveRecord::Migration
|
|
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
|