Attach nameservers directly to domain

This commit is contained in:
Martin Lensment 2014-07-31 11:21:22 +03:00
parent 7a9988236e
commit 4396ec665c
6 changed files with 19 additions and 5 deletions

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20140730141443) do
ActiveRecord::Schema.define(version: 20140731081816) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -74,6 +74,11 @@ ActiveRecord::Schema.define(version: 20140730141443) do
t.integer "period"
end
create_table "domains_nameservers", force: true do |t|
t.integer "domain_id"
t.integer "nameserver_id"
end
create_table "epp_sessions", force: true do |t|
t.string "session_id"
t.text "data"