mirror of
https://github.com/internetee/registry.git
synced 2025-08-04 17:01:44 +02:00
Refactor domain create xml builder, add dnskey model
This commit is contained in:
parent
b85420a598
commit
7d7a399ead
8 changed files with 102 additions and 45 deletions
11
db/migrate/20141001085322_create_dnskeys.rb
Normal file
11
db/migrate/20141001085322_create_dnskeys.rb
Normal file
|
@ -0,0 +1,11 @@
|
|||
class CreateDnskeys < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :dnskeys do |t|
|
||||
t.integer :domain_id
|
||||
t.integer :flags
|
||||
t.integer :protocol
|
||||
t.integer :alg
|
||||
t.string :public_key
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue