mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
5 lines
178 B
Ruby
5 lines
178 B
Ruby
class RemoveUnneededIndexes < ActiveRecord::Migration[7.1]
|
|
def change
|
|
remove_index :student_races, name: "index_student_races_on_student_id", column: :student_id
|
|
end
|
|
end
|