mirror of
https://github.com/internetee/registry.git
synced 2025-07-02 17:23:34 +02:00
Epp User login
This commit is contained in:
parent
76ec918426
commit
e20b138644
12 changed files with 106 additions and 8 deletions
13
db/schema.rb
13
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: 20140616073945) do
|
||||
ActiveRecord::Schema.define(version: 20140620130107) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -61,6 +61,17 @@ ActiveRecord::Schema.define(version: 20140616073945) do
|
|||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "epp_users", force: true do |t|
|
||||
t.integer "registrar_id"
|
||||
t.string "username"
|
||||
t.string "password"
|
||||
t.boolean "active", default: false
|
||||
t.text "csr"
|
||||
t.text "crt"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "nameservers", force: true do |t|
|
||||
t.string "name"
|
||||
t.string "ip"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue