mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
Update cleaner to read parent races. Update uploader to set races for parents. Add race graphs to analyze page. Show both measure and scale level graphs
10 lines
260 B
Ruby
10 lines
260 B
Ruby
class CreateParentRaces < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :parent_races do |t|
|
|
t.references :parent, null: false, foreign_key: true
|
|
t.references :race, null: false, foreign_key: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|