sqm-dashboards/app/models/survey.rb
rebuilt 286e74b651 Seed db with surveys to keep track of school, year, and survey type
Seed db with survey_item information to keep track of which survey_item is on the short form survey.  REcalculate response rate depending on whether school to regular survey or short form survey.

Correct score for short form schools.  Finishes #181284202
2022-03-03 10:44:41 +01:00

9 lines
153 B
Ruby

class Survey < ApplicationRecord
belongs_to :academic_year
belongs_to :school
enum form: {
normal: 0,
short: 1
}, _default: :normal
end