sqm-dashboards/db/migrate/20250515205734_create_parent_races.rb
rebuilt 5b00454a1b ECP-125 feat:
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
2025-05-22 11:57:26 -07:00

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