1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-24 17:04:43 +00:00

Added indexs for matches on weight_id and wrestlers on school_id

This commit is contained in:
2022-02-23 21:25:01 +00:00
parent cce2e5b5f8
commit a3391afe02
2 changed files with 9 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
class IndexesMatchesWeightidWrestlersSchoolid < ActiveRecord::Migration[6.1]
def change
add_index :matches, :weight_id
add_index :wrestlers, :school_id
end
end

View File

@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2021_02_22_161151) do
ActiveRecord::Schema.define(version: 2022_02_23_185853) do
create_table "delayed_jobs", force: :cascade do |t|
t.integer "priority", default: 0, null: false
@@ -52,6 +52,7 @@ ActiveRecord::Schema.define(version: 2021_02_22_161151) do
t.index ["mat_id"], name: "index_matches_on_mat_id"
t.index ["tournament_id"], name: "index_matches_on_tournament_id"
t.index ["w1", "w2"], name: "index_matches_on_w1_and_w2"
t.index ["weight_id"], name: "index_matches_on_weight_id"
end
create_table "mats", force: :cascade do |t|
@@ -150,6 +151,7 @@ ActiveRecord::Schema.define(version: 2021_02_22_161151) do
t.integer "pool"
t.integer "pool_placement"
t.string "pool_placement_tiebreaker"
t.index ["school_id"], name: "index_wrestlers_on_school_id"
t.index ["weight_id"], name: "index_wrestlers_on_weight_id"
end