From 17eeda04add5f601018a509dd6900e7c39d3a86e Mon Sep 17 00:00:00 2001 From: Nelson Jovel Date: Fri, 8 Mar 2024 14:02:28 -0800 Subject: [PATCH] fix: Update schema to see if it fixes build issue --- db/schema.rb | 263 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 262 insertions(+), 1 deletion(-) diff --git a/db/schema.rb b/db/schema.rb index 66fb3877..d40308c9 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.1].define(version: 2023_12_27_183313) do +ActiveRecord::Schema[7.1].define(version: 2024_01_05_221835) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -61,6 +61,243 @@ ActiveRecord::Schema[7.1].define(version: 2023_12_27_183313) do t.index ["slug"], name: "index_categories_on_slug", unique: true end + create_table "dashboard_academic_years", force: :cascade do |t| + t.string "range" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["range"], name: "index_dashboard_academic_years_on_range" + end + + create_table "dashboard_admin_data_items", force: :cascade do |t| + t.string "admin_data_item_id" + t.string "description" + t.float "watch_low_benchmark" + t.float "growth_low_benchmark" + t.float "approval_low_benchmark" + t.float "ideal_low_benchmark" + t.boolean "hs_only_item" + t.bigint "dashboard_scale_id", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["dashboard_scale_id"], name: "index_dashboard_admin_data_items_on_dashboard_scale_id" + end + + create_table "dashboard_admin_data_values", force: :cascade do |t| + t.float "likert_score" + t.bigint "dashboard_school_id", null: false + t.bigint "dashboard_admin_data_item_id", null: false + t.bigint "dashboard_academic_year_id", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["dashboard_academic_year_id"], name: "idx_on_dashboard_academic_year_id_1de27231d5" + t.index ["dashboard_admin_data_item_id"], name: "idx_on_dashboard_admin_data_item_id_edae2faad3" + t.index ["dashboard_school_id"], name: "index_dashboard_admin_data_values_on_dashboard_school_id" + end + + create_table "dashboard_categories", force: :cascade do |t| + t.string "name" + t.text "description" + t.string "slug" + t.string "category_id" + t.string "short_description" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "dashboard_districts", force: :cascade do |t| + t.string "name" + t.string "slug" + t.integer "qualtrics_code" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "dashboard_ells", force: :cascade do |t| + t.string "designation" + t.string "slug" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "dashboard_examples", force: :cascade do |t| + t.string "text" + t.text "body" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "dashboard_genders", force: :cascade do |t| + t.integer "qualtrics_code" + t.string "designation" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "dashboard_incomes", force: :cascade do |t| + t.string "designation" + t.string "slug" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "dashboard_measures", force: :cascade do |t| + t.string "measure_id" + t.string "name" + t.bigint "dashboard_subcategory_id", null: false + t.text "description" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["dashboard_subcategory_id"], name: "index_dashboard_measures_on_dashboard_subcategory_id" + end + + create_table "dashboard_races", force: :cascade do |t| + t.string "designation" + t.integer "qualtrics_code" + t.string "slug" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "dashboard_respondents", force: :cascade do |t| + t.bigint "dashboard_school_id", null: false + t.bigint "dashboard_academic_year_id", null: false + t.integer "total_students" + t.float "total_teachers" + t.integer "pk" + t.integer "k" + t.integer "one" + t.integer "two" + t.integer "three" + t.integer "four" + t.integer "five" + t.integer "six" + t.integer "seven" + t.integer "eight" + t.integer "nine" + t.integer "ten" + t.integer "eleven" + t.integer "twelve" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["dashboard_academic_year_id"], name: "index_dashboard_respondents_on_dashboard_academic_year_id" + t.index ["dashboard_school_id"], name: "index_dashboard_respondents_on_dashboard_school_id" + end + + create_table "dashboard_response_rates", force: :cascade do |t| + t.bigint "dashboard_subcategory_id", null: false + t.bigint "dashboard_school_id", null: false + t.bigint "dashboard_academic_year_id", null: false + t.float "school_response_rate" + t.float "teacher_response_rate" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["dashboard_academic_year_id"], name: "index_dashboard_response_rates_on_dashboard_academic_year_id" + t.index ["dashboard_school_id"], name: "index_dashboard_response_rates_on_dashboard_school_id" + t.index ["dashboard_subcategory_id"], name: "index_dashboard_response_rates_on_dashboard_subcategory_id" + end + + create_table "dashboard_scales", force: :cascade do |t| + t.string "scale_id" + t.bigint "dashboard_measure_id", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["dashboard_measure_id"], name: "index_dashboard_scales_on_dashboard_measure_id" + end + + create_table "dashboard_schools", force: :cascade do |t| + t.string "name" + t.bigint "dashboard_district_id", null: false + t.text "description" + t.string "slug" + t.integer "qualtrics_code" + t.integer "dese_id" + t.boolean "is_hs" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["dashboard_district_id"], name: "index_dashboard_schools_on_dashboard_district_id" + end + + create_table "dashboard_scores", force: :cascade do |t| + t.float "average" + t.boolean "meets_teacher_threshold" + t.boolean "meets_student_threshold" + t.boolean "meets_admin_data_threshold" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "dashboard_speds", force: :cascade do |t| + t.string "designation" + t.string "slug" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "dashboard_student_races", force: :cascade do |t| + t.bigint "dashboard_student_id", null: false + t.bigint "dashboard_race_id", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["dashboard_race_id"], name: "index_dashboard_student_races_on_dashboard_race_id" + t.index ["dashboard_student_id"], name: "index_dashboard_student_races_on_dashboard_student_id" + end + + create_table "dashboard_students", force: :cascade do |t| + t.string "lasid" + t.string "response_id" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "dashboard_subcategories", force: :cascade do |t| + t.string "name" + t.text "description" + t.string "subcategory_id" + t.bigint "dashboard_categories_id", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["dashboard_categories_id"], name: "index_dashboard_subcategories_on_dashboard_categories_id" + end + + create_table "dashboard_survey_item_responses", force: :cascade do |t| + t.integer "likert_score" + t.bigint "dashboard_school_id", null: false + t.bigint "dashboard_survey_item_id", null: false + t.bigint "dashboard_academic_year_id", null: false + t.bigint "dashboard_student_id" + t.bigint "dashboard_gender_id" + t.bigint "dashboard_income_id" + t.bigint "dashboard_ell_id" + t.bigint "dashboard_sped_id" + t.string "response_id" + t.integer "grade" + t.datetime "recorded_date" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["dashboard_academic_year_id"], name: "idx_on_dashboard_academic_year_id_98a9cc7783" + t.index ["dashboard_ell_id"], name: "index_dashboard_survey_item_responses_on_dashboard_ell_id" + t.index ["dashboard_gender_id"], name: "index_dashboard_survey_item_responses_on_dashboard_gender_id" + t.index ["dashboard_income_id"], name: "index_dashboard_survey_item_responses_on_dashboard_income_id" + t.index ["dashboard_school_id"], name: "index_dashboard_survey_item_responses_on_dashboard_school_id" + t.index ["dashboard_sped_id"], name: "index_dashboard_survey_item_responses_on_dashboard_sped_id" + t.index ["dashboard_student_id"], name: "index_dashboard_survey_item_responses_on_dashboard_student_id" + t.index ["dashboard_survey_item_id"], name: "idx_on_dashboard_survey_item_id_3f6652fbc6" + end + + create_table "dashboard_survey_items", force: :cascade do |t| + t.string "survey_item_id" + t.string "prompt" + t.float "watch_low_benchmark" + t.float "growth_low_benchmark" + t.float "approval_low_benchmark" + t.float "ideal_low_benchmark" + t.bigint "dashboard_scale_id", null: false + t.boolean "on_short_form" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["dashboard_scale_id"], name: "index_dashboard_survey_items_on_dashboard_scale_id" + end + create_table "districts", force: :cascade do |t| t.string "name" t.string "slug" @@ -487,6 +724,30 @@ ActiveRecord::Schema[7.1].define(version: 2023_12_27_183313) do add_foreign_key "admin_data_values", "academic_years" add_foreign_key "admin_data_values", "admin_data_items" add_foreign_key "admin_data_values", "schools" + add_foreign_key "dashboard_admin_data_items", "dashboard_scales" + add_foreign_key "dashboard_admin_data_values", "dashboard_academic_years" + add_foreign_key "dashboard_admin_data_values", "dashboard_admin_data_items" + add_foreign_key "dashboard_admin_data_values", "dashboard_schools" + add_foreign_key "dashboard_measures", "dashboard_subcategories" + add_foreign_key "dashboard_respondents", "dashboard_academic_years" + add_foreign_key "dashboard_respondents", "dashboard_schools" + add_foreign_key "dashboard_response_rates", "dashboard_academic_years" + add_foreign_key "dashboard_response_rates", "dashboard_schools" + add_foreign_key "dashboard_response_rates", "dashboard_subcategories" + add_foreign_key "dashboard_scales", "dashboard_measures" + add_foreign_key "dashboard_schools", "dashboard_districts" + add_foreign_key "dashboard_student_races", "dashboard_races" + add_foreign_key "dashboard_student_races", "dashboard_students" + add_foreign_key "dashboard_subcategories", "dashboard_categories", column: "dashboard_categories_id" + add_foreign_key "dashboard_survey_item_responses", "dashboard_academic_years" + add_foreign_key "dashboard_survey_item_responses", "dashboard_ells" + add_foreign_key "dashboard_survey_item_responses", "dashboard_genders" + add_foreign_key "dashboard_survey_item_responses", "dashboard_incomes" + add_foreign_key "dashboard_survey_item_responses", "dashboard_schools" + add_foreign_key "dashboard_survey_item_responses", "dashboard_speds" + add_foreign_key "dashboard_survey_item_responses", "dashboard_students" + add_foreign_key "dashboard_survey_item_responses", "dashboard_survey_items" + add_foreign_key "dashboard_survey_items", "dashboard_scales" add_foreign_key "legacy_recipient_lists", "legacy_schools", column: "school_id" add_foreign_key "legacy_schedules", "legacy_schools", column: "school_id" add_foreign_key "legacy_school_categories", "legacy_categories", column: "category_id"