mirror of
https://github.com/internetee/registry.git
synced 2025-05-19 10:49:39 +02:00
Do not allow more than 4 simultaneous EPP connections
This commit is contained in:
parent
b39c3ab262
commit
6a63c258f6
5 changed files with 25 additions and 4 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddRegistrarIdToEppSession < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :epp_sessions, :registrar_id, :integer
|
||||
end
|
||||
end
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20150519144118) do
|
||||
ActiveRecord::Schema.define(version: 20150520164507) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -317,6 +317,7 @@ ActiveRecord::Schema.define(version: 20150519144118) do
|
|||
t.text "data"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.integer "registrar_id"
|
||||
end
|
||||
|
||||
add_index "epp_sessions", ["session_id"], name: "index_epp_sessions_on_session_id", unique: true, using: :btree
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue