mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
6 lines
159 B
Ruby
6 lines
159 B
Ruby
class AddIndexesToMeasures < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_index :measures, :measure_id
|
|
add_index :measures, :subcategory_id
|
|
end
|
|
end
|