mirror of
https://github.com/internetee/registry.git
synced 2025-07-25 03:58:27 +02:00
7 lines
No EOL
242 B
Ruby
7 lines
No EOL
242 B
Ruby
class RemoveUnusedColumnsFromLogDomains < ActiveRecord::Migration[6.0]
|
|
def change
|
|
remove_column :log_domains, :nameserver_ids
|
|
remove_column :log_domains, :admin_contact_ids
|
|
remove_column :log_domains, :tech_contact_ids
|
|
end
|
|
end |