mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
Add basic keyrelay command, tests
This commit is contained in:
parent
1f5efa78ac
commit
ec721b69c0
10 changed files with 133 additions and 5 deletions
18
db/schema.rb
18
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: 20141111105931) do
|
||||
ActiveRecord::Schema.define(version: 20141114130737) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -215,6 +215,22 @@ ActiveRecord::Schema.define(version: 20141111105931) do
|
|||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "keyrelays", force: true do |t|
|
||||
t.integer "domain_id"
|
||||
t.datetime "pa_date"
|
||||
t.string "key_data_flags"
|
||||
t.string "key_data_protocol"
|
||||
t.string "key_data_alg"
|
||||
t.text "key_data_public_key"
|
||||
t.string "auth_info_pw"
|
||||
t.string "expiry_relative"
|
||||
t.datetime "expiry_absolute"
|
||||
t.integer "requester_id"
|
||||
t.integer "accepter_id"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "messages", force: true do |t|
|
||||
t.integer "registrar_id"
|
||||
t.string "body"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue