This commit is contained in:
Priit Tark 2015-06-12 12:35:50 +03:00
parent 0aa8058022
commit 51d22af52b
9 changed files with 4779 additions and 2 deletions

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20150609103333) do
ActiveRecord::Schema.define(version: 20150611124920) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -306,6 +306,7 @@ ActiveRecord::Schema.define(version: 20150609103333) do
t.datetime "registrant_verification_asked_at"
t.string "registrant_verification_token"
t.json "pending_json"
t.datetime "force_delete_at"
end
add_index "domains", ["delete_at"], name: "index_domains_on_delete_at", using: :btree
@ -900,6 +901,17 @@ ActiveRecord::Schema.define(version: 20150609103333) do
t.string "operation_category"
end
create_table "que_jobs", id: false, force: :cascade do |t|
t.integer "priority", limit: 2, default: 100, null: false
t.datetime "run_at", default: "now()", null: false
t.integer "job_id", limit: 8, default: "nextval('que_jobs_job_id_seq'::regclass)", null: false
t.text "job_class", null: false
t.json "args", default: [], null: false
t.integer "error_count", default: 0, null: false
t.text "last_error"
t.text "queue", default: "", null: false
end
create_table "registrant_verifications", force: :cascade do |t|
t.string "domain_name"
t.string "verification_token"