mirror of
https://github.com/internetee/registry.git
synced 2025-08-05 01:11:43 +02:00
parent
970cd7225c
commit
ed0af5033e
19 changed files with 63 additions and 626 deletions
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