mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
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
9 lines
153 B
Ruby
9 lines
153 B
Ruby
class Survey < ApplicationRecord
|
|
belongs_to :academic_year
|
|
belongs_to :school
|
|
|
|
enum form: {
|
|
normal: 0,
|
|
short: 1
|
|
}, _default: :normal
|
|
end
|