1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-04 13:43:48 +00:00

Added a separate table to record background job status for tournaments and fixed migrations/schemas for solid dbs. Foreign key constraints are now added to the migrations where we do belongs_to.

This commit is contained in:
2025-04-15 16:16:44 -04:00
parent 4828d9b876
commit 6e61a7245a
37 changed files with 678 additions and 1169 deletions

View File

@@ -10,16 +10,17 @@
#
# 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_15_173921) do
create_table "mat_assignment_rules", force: :cascade do |t|
t.integer "tournament_id", null: false
t.integer "mat_id", null: false
t.bigint "tournament_id"
t.bigint "mat_id"
t.string "weight_classes"
t.string "bracket_positions"
t.string "rounds"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["mat_id"], name: "index_mat_assignment_rules_on_mat_id", unique: true
t.index ["tournament_id"], name: "index_mat_assignment_rules_on_tournament_id"
end
create_table "matches", force: :cascade do |t|
@@ -32,16 +33,16 @@ ActiveRecord::Schema[8.0].define(version: 2025_04_05_160115) do
t.string "score"
t.datetime "created_at", precision: nil
t.datetime "updated_at", precision: nil
t.integer "tournament_id"
t.bigint "tournament_id"
t.integer "round"
t.integer "finished"
t.integer "bout_number"
t.integer "weight_id"
t.bigint "weight_id"
t.string "bracket_position"
t.integer "bracket_position_number"
t.string "loser1_name"
t.string "loser2_name"
t.integer "mat_id"
t.bigint "mat_id"
t.string "overtime_type"
t.datetime "finished_at"
t.index ["mat_id"], name: "index_matches_on_mat_id"
@@ -52,194 +53,69 @@ ActiveRecord::Schema[8.0].define(version: 2025_04_05_160115) do
create_table "mats", force: :cascade do |t|
t.string "name"
t.integer "tournament_id"
t.bigint "tournament_id"
t.datetime "created_at", precision: nil
t.datetime "updated_at", precision: nil
t.index ["tournament_id"], name: "index_mats_on_tournament_id"
end
create_table "school_delegates", force: :cascade do |t|
t.integer "user_id"
t.integer "school_id"
t.bigint "user_id"
t.bigint "school_id"
t.datetime "created_at", precision: nil, null: false
t.datetime "updated_at", precision: nil, null: false
t.index ["school_id"], name: "index_school_delegates_on_school_id"
t.index ["user_id"], name: "index_school_delegates_on_user_id"
end
create_table "schools", force: :cascade do |t|
t.string "name"
t.datetime "created_at", precision: nil
t.datetime "updated_at", precision: nil
t.integer "tournament_id"
t.bigint "tournament_id"
t.decimal "score", precision: 15, scale: 1
t.string "permission_key"
t.index ["permission_key"], name: "index_schools_on_permission_key", unique: true
t.index ["tournament_id"], name: "index_schools_on_tournament_id"
end
create_table "solid_cable_messages", force: :cascade do |t|
t.binary "channel", limit: 1024, null: false
t.binary "payload", limit: 536870912, null: false
t.datetime "created_at", null: false
t.integer "channel_hash", limit: 8, null: false
t.index ["channel"], name: "index_solid_cable_messages_on_channel"
t.index ["channel_hash"], name: "index_solid_cable_messages_on_channel_hash"
t.index ["created_at"], name: "index_solid_cable_messages_on_created_at"
end
create_table "solid_cache_entries", force: :cascade do |t|
t.binary "key", limit: 1024, null: false
t.binary "value", limit: 536870912, null: false
t.datetime "created_at", null: false
t.integer "key_hash", limit: 8, null: false
t.integer "byte_size", limit: 4, null: false
t.index ["byte_size"], name: "index_solid_cache_entries_on_byte_size"
t.index ["key_hash", "byte_size"], name: "index_solid_cache_entries_on_key_hash_and_byte_size"
t.index ["key_hash"], name: "index_solid_cache_entries_on_key_hash", unique: true
end
create_table "solid_queue_blocked_executions", force: :cascade do |t|
t.bigint "job_id", null: false
t.string "queue_name", null: false
t.integer "priority", default: 0, null: false
t.string "concurrency_key", null: false
t.datetime "expires_at", null: false
t.datetime "created_at", null: false
t.index ["concurrency_key", "priority", "job_id"], name: "index_solid_queue_blocked_executions_for_release"
t.index ["expires_at", "concurrency_key"], name: "index_solid_queue_blocked_executions_for_maintenance"
t.index ["job_id"], name: "index_solid_queue_blocked_executions_on_job_id", unique: true
end
create_table "solid_queue_claimed_executions", force: :cascade do |t|
t.bigint "job_id", null: false
t.bigint "process_id"
t.datetime "created_at", null: false
t.index ["job_id"], name: "index_solid_queue_claimed_executions_on_job_id", unique: true
t.index ["process_id", "job_id"], name: "index_solid_queue_claimed_executions_on_process_id_and_job_id"
end
create_table "solid_queue_failed_executions", force: :cascade do |t|
t.bigint "job_id", null: false
t.text "error"
t.datetime "created_at", null: false
t.index ["job_id"], name: "index_solid_queue_failed_executions_on_job_id", unique: true
end
create_table "solid_queue_jobs", force: :cascade do |t|
t.string "queue_name", null: false
t.string "class_name", null: false
t.text "arguments"
t.integer "priority", default: 0, null: false
t.string "active_job_id"
t.datetime "scheduled_at"
t.datetime "finished_at"
t.string "concurrency_key"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["active_job_id"], name: "index_solid_queue_jobs_on_active_job_id"
t.index ["class_name"], name: "index_solid_queue_jobs_on_class_name"
t.index ["finished_at"], name: "index_solid_queue_jobs_on_finished_at"
t.index ["queue_name", "finished_at"], name: "index_solid_queue_jobs_for_filtering"
t.index ["scheduled_at", "finished_at"], name: "index_solid_queue_jobs_for_alerting"
end
create_table "solid_queue_pauses", force: :cascade do |t|
t.string "queue_name", null: false
t.datetime "created_at", null: false
t.index ["queue_name"], name: "index_solid_queue_pauses_on_queue_name", unique: true
end
create_table "solid_queue_processes", force: :cascade do |t|
t.string "kind", null: false
t.datetime "last_heartbeat_at", null: false
t.bigint "supervisor_id"
t.integer "pid", null: false
t.string "hostname"
t.text "metadata"
t.datetime "created_at", null: false
t.string "name", null: false
t.index ["last_heartbeat_at"], name: "index_solid_queue_processes_on_last_heartbeat_at"
t.index ["name", "supervisor_id"], name: "index_solid_queue_processes_on_name_and_supervisor_id", unique: true
t.index ["supervisor_id"], name: "index_solid_queue_processes_on_supervisor_id"
end
create_table "solid_queue_ready_executions", force: :cascade do |t|
t.bigint "job_id", null: false
t.string "queue_name", null: false
t.integer "priority", default: 0, null: false
t.datetime "created_at", null: false
t.index ["job_id"], name: "index_solid_queue_ready_executions_on_job_id", unique: true
t.index ["priority", "job_id"], name: "index_solid_queue_poll_all"
t.index ["queue_name", "priority", "job_id"], name: "index_solid_queue_poll_by_queue"
end
create_table "solid_queue_recurring_executions", force: :cascade do |t|
t.bigint "job_id", null: false
t.string "task_key", null: false
t.datetime "run_at", null: false
t.datetime "created_at", null: false
t.index ["job_id"], name: "index_solid_queue_recurring_executions_on_job_id", unique: true
t.index ["task_key", "run_at"], name: "index_solid_queue_recurring_executions_on_task_key_and_run_at", unique: true
end
create_table "solid_queue_recurring_tasks", force: :cascade do |t|
t.string "key", null: false
t.string "schedule", null: false
t.string "command", limit: 2048
t.string "class_name"
t.text "arguments"
t.string "queue_name"
t.integer "priority", default: 0
t.boolean "static", default: true, null: false
t.text "description"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["key"], name: "index_solid_queue_recurring_tasks_on_key", unique: true
t.index ["static"], name: "index_solid_queue_recurring_tasks_on_static"
end
create_table "solid_queue_scheduled_executions", force: :cascade do |t|
t.bigint "job_id", null: false
t.string "queue_name", null: false
t.integer "priority", default: 0, null: false
t.datetime "scheduled_at", null: false
t.datetime "created_at", null: false
t.index ["job_id"], name: "index_solid_queue_scheduled_executions_on_job_id", unique: true
t.index ["scheduled_at", "priority", "job_id"], name: "index_solid_queue_dispatch_all"
end
create_table "solid_queue_semaphores", force: :cascade do |t|
t.string "key", null: false
t.integer "value", default: 1, null: false
t.datetime "expires_at", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["expires_at"], name: "index_solid_queue_semaphores_on_expires_at"
t.index ["key", "value"], name: "index_solid_queue_semaphores_on_key_and_value"
t.index ["key"], name: "index_solid_queue_semaphores_on_key", unique: true
end
create_table "teampointadjusts", force: :cascade do |t|
t.integer "points"
t.integer "wrestler_id"
t.bigint "wrestler_id"
t.datetime "created_at", precision: nil, null: false
t.datetime "updated_at", precision: nil, null: false
t.integer "school_id"
t.bigint "school_id"
t.index ["school_id"], name: "index_teampointadjusts_on_school_id"
t.index ["wrestler_id"], name: "index_teampointadjusts_on_wrestler_id"
end
create_table "tournament_backups", force: :cascade do |t|
t.integer "tournament_id", null: false
t.bigint "tournament_id"
t.text "backup_data", limit: 4294967295, null: false
t.string "backup_reason"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["tournament_id"], name: "index_tournament_backups_on_tournament_id"
end
create_table "tournament_delegates", force: :cascade do |t|
t.integer "user_id"
t.integer "tournament_id"
t.bigint "user_id"
t.bigint "tournament_id"
t.datetime "created_at", precision: nil, null: false
t.datetime "updated_at", precision: nil, null: false
t.index ["tournament_id"], name: "index_tournament_delegates_on_tournament_id"
t.index ["user_id"], name: "index_tournament_delegates_on_user_id"
end
create_table "tournament_job_statuses", force: :cascade do |t|
t.bigint "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|
@@ -251,7 +127,7 @@ ActiveRecord::Schema[8.0].define(version: 2025_04_05_160115) do
t.datetime "updated_at", precision: nil
t.text "tournament_type"
t.text "weigh_in_ref"
t.integer "user_id"
t.bigint "user_id"
t.integer "curently_generating_matches"
t.date "date"
t.boolean "is_public"
@@ -282,14 +158,14 @@ ActiveRecord::Schema[8.0].define(version: 2025_04_05_160115) do
t.decimal "max", precision: 15, scale: 1
t.datetime "created_at", precision: nil
t.datetime "updated_at", precision: nil
t.integer "tournament_id"
t.bigint "tournament_id"
t.index ["tournament_id"], name: "index_weights_on_tournament_id"
end
create_table "wrestlers", force: :cascade do |t|
t.string "name"
t.integer "school_id"
t.integer "weight_id"
t.bigint "school_id"
t.bigint "weight_id"
t.integer "bracket_line"
t.integer "original_seed"
t.datetime "created_at", precision: nil
@@ -306,10 +182,23 @@ ActiveRecord::Schema[8.0].define(version: 2025_04_05_160115) do
t.index ["weight_id"], name: "index_wrestlers_on_weight_id"
end
add_foreign_key "solid_queue_blocked_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
add_foreign_key "solid_queue_claimed_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
add_foreign_key "solid_queue_failed_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
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 "mat_assignment_rules", "mats"
add_foreign_key "mat_assignment_rules", "tournaments"
add_foreign_key "matches", "mats"
add_foreign_key "matches", "tournaments"
add_foreign_key "matches", "weights"
add_foreign_key "mats", "tournaments"
add_foreign_key "school_delegates", "schools"
add_foreign_key "school_delegates", "users"
add_foreign_key "schools", "tournaments"
add_foreign_key "teampointadjusts", "schools"
add_foreign_key "teampointadjusts", "wrestlers"
add_foreign_key "tournament_backups", "tournaments"
add_foreign_key "tournament_delegates", "tournaments"
add_foreign_key "tournament_delegates", "users"
add_foreign_key "tournament_job_statuses", "tournaments"
add_foreign_key "tournaments", "users"
add_foreign_key "weights", "tournaments"
add_foreign_key "wrestlers", "schools"
add_foreign_key "wrestlers", "weights"
end