1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00
Files
wrestlingdev.com/db/migrate/20220223185853_indexes_matches_weightid_wrestlers_schoolid.rb

7 lines
172 B
Ruby

class IndexesMatchesWeightidWrestlersSchoolid < ActiveRecord::Migration[6.1]
def change
add_index :matches, :weight_id
add_index :wrestlers, :school_id
end
end