mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
14 lines
449 B
Ruby
14 lines
449 B
Ruby
class DropAllVersionsDisabledByDefault < ActiveRecord::Migration
|
|
def change
|
|
# All versions are depricated by log_* tables
|
|
|
|
# comment to remove unneeded old versions tables
|
|
# drop_table "version_associations"
|
|
# drop_table "versions"
|
|
# drop_table "address_versions"
|
|
# drop_table "contact_versions"
|
|
# drop_table "domain_status_versions"
|
|
# drop_table "domain_versions"
|
|
# drop_table "nameserver_versions"
|
|
end
|
|
end
|