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

5 lines
131 B
Ruby

class AddResponseIdToStudent < ActiveRecord::Migration[7.0]
def change
add_column :students, :response_id, :string
end
end