Able to create schools now

This commit is contained in:
Nelson Jovel 2024-01-04 20:15:33 -08:00
parent a4fddbeced
commit 865b7b17af
11 changed files with 26 additions and 19 deletions

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.1].define(version: 2024_01_04_192128) do
ActiveRecord::Schema[7.1].define(version: 2024_01_05_040909) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -47,6 +47,13 @@ ActiveRecord::Schema[7.1].define(version: 2024_01_04_192128) do
t.index ["dashboard_school_id"], name: "index_dashboard_admin_data_values_on_dashboard_school_id"
end
create_table "dashboard_atoms", force: :cascade do |t|
t.integer "survey_item"
t.text "text"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "dashboard_categories", force: :cascade do |t|
t.string "name"
t.text "description"
@ -217,11 +224,11 @@ ActiveRecord::Schema[7.1].define(version: 2024_01_04_192128) do
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", null: false
t.bigint "dashboard_gender_id", null: false
t.bigint "dashboard_income_id", null: false
t.bigint "dashboard_ell_id", null: false
t.bigint "dashboard_sped_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"