mirror of
https://github.com/internetee/registry.git
synced 2025-05-28 16:39:55 +02:00
Add new resource for certs
This commit is contained in:
parent
143fb7eb1b
commit
5319db16b4
12 changed files with 310 additions and 33 deletions
10
db/schema.rb
10
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: 20150217133937) do
|
||||
ActiveRecord::Schema.define(version: 20150223104842) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -53,6 +53,14 @@ ActiveRecord::Schema.define(version: 20150217133937) do
|
|||
|
||||
add_index "cached_nameservers", ["hostname", "ipv4", "ipv6"], name: "index_cached_nameservers_on_hostname_and_ipv4_and_ipv6", unique: true, using: :btree
|
||||
|
||||
create_table "certificates", force: :cascade do |t|
|
||||
t.integer "api_user_id"
|
||||
t.text "csr"
|
||||
t.text "crt"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "contact_disclosures", force: :cascade do |t|
|
||||
t.integer "contact_id"
|
||||
t.boolean "phone"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue