mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
10 lines
302 B
Ruby
10 lines
302 B
Ruby
class CreateDashboardStudentRaces < ActiveRecord::Migration[7.1]
|
|
def change
|
|
create_table :dashboard_student_races do |t|
|
|
t.references :dashboard_student, null: false, foreign_key: true
|
|
t.references :dashboard_race, null: false, foreign_key: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|