mirror of
https://github.com/internetee/registry.git
synced 2025-07-21 10:16:01 +02:00
Remove cached nameservers
This commit is contained in:
parent
264551f15f
commit
7c80577ef5
3 changed files with 6 additions and 11 deletions
|
@ -1,2 +0,0 @@
|
|||
class CachedNameserver < ActiveRecord::Base
|
||||
end
|
5
db/migrate/20150105134026_drop_cached_nameservers.rb
Normal file
5
db/migrate/20150105134026_drop_cached_nameservers.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class DropCachedNameservers < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :cached_nameservers
|
||||
end
|
||||
end
|
10
db/schema.rb
10
db/schema.rb
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20141229115619) do
|
||||
ActiveRecord::Schema.define(version: 20150105134026) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -39,14 +39,6 @@ ActiveRecord::Schema.define(version: 20141229115619) do
|
|||
t.string "street3"
|
||||
end
|
||||
|
||||
create_table "cached_nameservers", id: false, force: true do |t|
|
||||
t.string "hostname"
|
||||
t.string "ipv4"
|
||||
t.string "ipv6"
|
||||
end
|
||||
|
||||
add_index "cached_nameservers", ["hostname", "ipv4", "ipv6"], name: "index_cached_nameservers_on_hostname_and_ipv4_and_ipv6", unique: true, using: :btree
|
||||
|
||||
create_table "contact_disclosures", force: true do |t|
|
||||
t.integer "contact_id"
|
||||
t.boolean "phone"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue