mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
10 lines
263 B
Ruby
10 lines
263 B
Ruby
class CreateStudentRaces < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :student_races do |t|
|
|
t.references :student, null: false, foreign_key: true
|
|
t.references :race, null: false, foreign_key: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|