mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-31 11:35:45 +00:00
Fixed reset password after the Devise migration.
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema[8.0].define(version: 2025_04_05_160115) do
|
||||
ActiveRecord::Schema[8.0].define(version: 2025_04_11_183818) do
|
||||
create_table "mat_assignment_rules", force: :cascade do |t|
|
||||
t.integer "tournament_id", null: false
|
||||
t.integer "mat_id", null: false
|
||||
@@ -242,6 +242,17 @@ ActiveRecord::Schema[8.0].define(version: 2025_04_05_160115) do
|
||||
t.datetime "updated_at", precision: nil, null: false
|
||||
end
|
||||
|
||||
create_table "tournament_job_statuses", force: :cascade do |t|
|
||||
t.integer "tournament_id", null: false
|
||||
t.string "job_name", null: false
|
||||
t.string "status", default: "Queued", null: false
|
||||
t.text "details"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["tournament_id", "job_name"], name: "index_tournament_job_statuses_on_tournament_id_and_job_name"
|
||||
t.index ["tournament_id"], name: "index_tournament_job_statuses_on_tournament_id"
|
||||
end
|
||||
|
||||
create_table "tournaments", force: :cascade do |t|
|
||||
t.string "name"
|
||||
t.string "address"
|
||||
@@ -312,4 +323,5 @@ ActiveRecord::Schema[8.0].define(version: 2025_04_05_160115) do
|
||||
add_foreign_key "solid_queue_ready_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
|
||||
add_foreign_key "solid_queue_recurring_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
|
||||
add_foreign_key "solid_queue_scheduled_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
|
||||
add_foreign_key "tournament_job_statuses", "tournaments"
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user