Merge branch 'master' into registry-623

# Conflicts:
#	db/structure.sql
This commit is contained in:
Artur Beljajev 2018-03-08 13:04:11 +02:00
commit ffc32b66de
72 changed files with 1004 additions and 932 deletions

View file

@ -0,0 +1,5 @@
class AddNameserversDomainIdFk < ActiveRecord::Migration
def change
add_foreign_key :nameservers, :domains, name: 'nameservers_domain_id_fk'
end
end

View file

@ -0,0 +1,5 @@
class ChangeNameserversDomainIdToNotNull < ActiveRecord::Migration
def change
change_column_null :nameservers, :domain_id, false
end
end

View file

@ -0,0 +1,5 @@
class ChangeNameserversHostnameToNotNull < ActiveRecord::Migration
def change
change_column_null :nameservers, :hostname, false
end
end

View file

@ -0,0 +1,5 @@
class RemovePeople < ActiveRecord::Migration
def change
drop_table :people
end
end

View file

@ -0,0 +1,5 @@
class RemoveCountries < ActiveRecord::Migration
def change
drop_table :countries
end
end

View file

@ -0,0 +1,5 @@
class RemoveLogCountries < ActiveRecord::Migration
def change
drop_table :log_countries
end
end

View file

@ -0,0 +1,5 @@
class RemoveDataMigrations < ActiveRecord::Migration
def change
drop_table :data_migrations
end
end

View file

@ -0,0 +1,5 @@
class RemoveCachedNameservers < ActiveRecord::Migration
def change
drop_table :cached_nameservers
end
end

View file

@ -0,0 +1,5 @@
class RemoveContactStatuses < ActiveRecord::Migration
def change
drop_table :contact_statuses
end
end

View file

@ -0,0 +1,5 @@
class RemoveLogContactStatuses < ActiveRecord::Migration
def change
drop_table :log_contact_statuses
end
end

View file

@ -0,0 +1,5 @@
class RemoveDomainStatuses < ActiveRecord::Migration
def change
drop_table :domain_statuses
end
end

View file

@ -0,0 +1,5 @@
class RemoveLogDomainStatuses < ActiveRecord::Migration
def change
drop_table :log_domain_statuses
end
end