mirror of
https://github.com/internetee/registry.git
synced 2025-08-05 17:28:18 +02:00
Merge branch 'master' into registry-623
# Conflicts: # db/structure.sql
This commit is contained in:
commit
ffc32b66de
72 changed files with 1004 additions and 932 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddNameserversDomainIdFk < ActiveRecord::Migration
|
||||
def change
|
||||
add_foreign_key :nameservers, :domains, name: 'nameservers_domain_id_fk'
|
||||
end
|
||||
end
|
|
@ -0,0 +1,5 @@
|
|||
class ChangeNameserversDomainIdToNotNull < ActiveRecord::Migration
|
||||
def change
|
||||
change_column_null :nameservers, :domain_id, false
|
||||
end
|
||||
end
|
|
@ -0,0 +1,5 @@
|
|||
class ChangeNameserversHostnameToNotNull < ActiveRecord::Migration
|
||||
def change
|
||||
change_column_null :nameservers, :hostname, false
|
||||
end
|
||||
end
|
5
db/migrate/20180306180401_remove_people.rb
Normal file
5
db/migrate/20180306180401_remove_people.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemovePeople < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :people
|
||||
end
|
||||
end
|
5
db/migrate/20180306181538_remove_countries.rb
Normal file
5
db/migrate/20180306181538_remove_countries.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveCountries < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :countries
|
||||
end
|
||||
end
|
5
db/migrate/20180306181554_remove_log_countries.rb
Normal file
5
db/migrate/20180306181554_remove_log_countries.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveLogCountries < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :log_countries
|
||||
end
|
||||
end
|
5
db/migrate/20180306181911_remove_data_migrations.rb
Normal file
5
db/migrate/20180306181911_remove_data_migrations.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveDataMigrations < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :data_migrations
|
||||
end
|
||||
end
|
5
db/migrate/20180306182456_remove_cached_nameservers.rb
Normal file
5
db/migrate/20180306182456_remove_cached_nameservers.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveCachedNameservers < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :cached_nameservers
|
||||
end
|
||||
end
|
5
db/migrate/20180306182758_remove_contact_statuses.rb
Normal file
5
db/migrate/20180306182758_remove_contact_statuses.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveContactStatuses < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :contact_statuses
|
||||
end
|
||||
end
|
5
db/migrate/20180306182941_remove_log_contact_statuses.rb
Normal file
5
db/migrate/20180306182941_remove_log_contact_statuses.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveLogContactStatuses < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :log_contact_statuses
|
||||
end
|
||||
end
|
5
db/migrate/20180306183540_remove_domain_statuses.rb
Normal file
5
db/migrate/20180306183540_remove_domain_statuses.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveDomainStatuses < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :domain_statuses
|
||||
end
|
||||
end
|
5
db/migrate/20180306183549_remove_log_domain_statuses.rb
Normal file
5
db/migrate/20180306183549_remove_log_domain_statuses.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveLogDomainStatuses < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :log_domain_statuses
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue