mirror of
https://github.com/internetee/registry.git
synced 2025-07-02 17:23:34 +02:00
Attach nameservers directly to domain
This commit is contained in:
parent
7a9988236e
commit
4396ec665c
6 changed files with 19 additions and 5 deletions
8
db/migrate/20140731081816_add_nameservers_to_domain.rb
Normal file
8
db/migrate/20140731081816_add_nameservers_to_domain.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
class AddNameserversToDomain < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :domains_nameservers do |t|
|
||||
t.integer :domain_id
|
||||
t.integer :nameserver_id
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue