mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
Add Overall Response Rate
This commit is contained in:
parent
435bc4a5be
commit
a71ebbc4e4
19 changed files with 585 additions and 244 deletions
|
|
@ -0,0 +1,5 @@
|
|||
class AddRecordedDateToSurveyItemResponse < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
add_column :survey_item_responses, :recorded_date, :datetime
|
||||
end
|
||||
end
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema[7.0].define(version: 2023_04_21_034505) do
|
||||
ActiveRecord::Schema[7.0].define(version: 2023_05_17_191736) do
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
||||
|
|
@ -444,6 +444,7 @@ ActiveRecord::Schema[7.0].define(version: 2023_04_21_034505) do
|
|||
t.bigint "student_id"
|
||||
t.integer "grade"
|
||||
t.bigint "gender_id"
|
||||
t.datetime "recorded_date"
|
||||
t.index ["academic_year_id"], name: "index_survey_item_responses_on_academic_year_id"
|
||||
t.index ["gender_id"], name: "index_survey_item_responses_on_gender_id"
|
||||
t.index ["response_id"], name: "index_survey_item_responses_on_response_id"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue