mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
7 lines
172 B
Ruby
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
|