mirror of
https://github.com/internetee/registry.git
synced 2025-08-03 16:32:04 +02:00
Refactor EPP users to API users
This commit is contained in:
parent
b8494993ea
commit
c91c9c8ebf
44 changed files with 154 additions and 150 deletions
|
@ -0,0 +1,5 @@
|
|||
class RenameEppUsersToApiUsers < ActiveRecord::Migration
|
||||
def change
|
||||
rename_table('epp_users', 'api_users')
|
||||
end
|
||||
end
|
24
db/schema.rb
24
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: 20150122091557) do
|
||||
ActiveRecord::Schema.define(version: 20150129114042) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -39,6 +39,17 @@ ActiveRecord::Schema.define(version: 20150122091557) do
|
|||
t.string "street3", limit: 255
|
||||
end
|
||||
|
||||
create_table "api_users", force: :cascade do |t|
|
||||
t.integer "registrar_id"
|
||||
t.string "username", limit: 255
|
||||
t.string "password", limit: 255
|
||||
t.boolean "active", default: false
|
||||
t.text "csr"
|
||||
t.text "crt"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "cached_nameservers", id: false, force: :cascade do |t|
|
||||
t.string "hostname", limit: 255
|
||||
t.string "ipv4", limit: 255
|
||||
|
@ -218,17 +229,6 @@ ActiveRecord::Schema.define(version: 20150122091557) do
|
|||
add_index "epp_sessions", ["session_id"], name: "index_epp_sessions_on_session_id", unique: true, using: :btree
|
||||
add_index "epp_sessions", ["updated_at"], name: "index_epp_sessions_on_updated_at", using: :btree
|
||||
|
||||
create_table "epp_users", force: :cascade do |t|
|
||||
t.integer "registrar_id"
|
||||
t.string "username", limit: 255
|
||||
t.string "password", limit: 255
|
||||
t.boolean "active", default: false
|
||||
t.text "csr"
|
||||
t.text "crt"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "keyrelays", force: :cascade do |t|
|
||||
t.integer "domain_id"
|
||||
t.datetime "pa_date"
|
||||
|
|
|
@ -16,7 +16,7 @@ registrar1 = Registrar.where(
|
|||
country: Country.first
|
||||
).first_or_create
|
||||
|
||||
EppUser.where(
|
||||
ApiUser.where(
|
||||
username: 'registrar1',
|
||||
password: 'test1',
|
||||
active: true,
|
||||
|
@ -30,7 +30,7 @@ registrar2 = Registrar.where(
|
|||
country: Country.first
|
||||
).first_or_create
|
||||
|
||||
EppUser.where(
|
||||
ApiUser.where(
|
||||
username: 'registrar2',
|
||||
password: 'test2',
|
||||
active: true,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue