sqm-dashboards/db/migrate/20220728010248_add_student_to_survey_item_response.rb
2022-07-29 15:34:56 -07:00

5 lines
161 B
Ruby

class AddStudentToSurveyItemResponse < ActiveRecord::Migration[7.0]
def change
add_reference :survey_item_responses, :student, foreign_key: true
end
end