mirror of
https://github.com/internetee/registry.git
synced 2025-07-03 01:33:36 +02:00
Go back to original dnskey
This commit is contained in:
parent
c19168c2ea
commit
eaa553dc9d
12 changed files with 189 additions and 125 deletions
9
db/migrate/20141010130412_add_ds_filelds_to_dnskey.rb
Normal file
9
db/migrate/20141010130412_add_ds_filelds_to_dnskey.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
class AddDsFileldsToDnskey < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :dnskeys, :ds_key_tag, :string
|
||||
add_column :dnskeys, :ds_alg, :integer
|
||||
add_column :dnskeys, :ds_digest_type, :integer
|
||||
add_column :dnskeys, :ds_digest, :string
|
||||
end
|
||||
end
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20141009101337) do
|
||||
ActiveRecord::Schema.define(version: 20141010130412) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -106,6 +106,10 @@ ActiveRecord::Schema.define(version: 20141009101337) do
|
|||
t.integer "alg"
|
||||
t.string "public_key"
|
||||
t.integer "delegation_signer_id"
|
||||
t.string "ds_key_tag"
|
||||
t.integer "ds_alg"
|
||||
t.integer "ds_digest_type"
|
||||
t.string "ds_digest"
|
||||
end
|
||||
|
||||
create_table "domain_contacts", force: true do |t|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue