From 98e37b8d3deafcfb5391c5a7da3f363742ecf16d Mon Sep 17 00:00:00 2001 From: Vanson Samuel <37637+binq@users.noreply.github.com> Date: Thu, 26 Dec 2024 09:21:34 -0600 Subject: [PATCH] LCPE: database schema update --- db/schema.rb | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 52 insertions(+), 1 deletion(-) diff --git a/db/schema.rb b/db/schema.rb index d2a5437a9..a88a9c4a8 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: 2024_09_05_145239) do +ActiveRecord::Schema[7.1].define(version: 2024_12_18_045749) do # These are extensions that must be enabled in order to support this database enable_extension "cube" enable_extension "earthdistance" @@ -1385,6 +1385,57 @@ t.index ["cross"], name: "index_ipeds_ics_on_cross" end + create_table "lcpe_exam_tests", force: :cascade do |t| + t.integer "exam_id" + t.string "descp_txt" + t.string "fee_amt" + t.string "begin_dt" + t.string "end_dt" + end + + create_table "lcpe_exams", force: :cascade do |t| + t.string "facility_code" + t.string "nexam_nm" + end + + create_table "lcpe_feed_lacs", force: :cascade do |t| + t.string "facility_code" + t.string "edu_lac_type_nm" + t.string "lac_nm" + t.string "test_nm" + t.string "fee_amt" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["facility_code"], name: "index_lcpe_feed_lacs_on_facility_code" + t.index ["lac_nm"], name: "index_lcpe_feed_lacs_on_lac_nm" + end + + create_table "lcpe_feed_nexams", force: :cascade do |t| + t.string "facility_code" + t.string "nexam_nm" + t.string "descp_txt" + t.string "fee_amt" + t.string "begin_dt" + t.string "end_dt" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["facility_code"], name: "index_lcpe_feed_nexams_on_facility_code" + t.index ["nexam_nm"], name: "index_lcpe_feed_nexams_on_nexam_nm" + end + + create_table "lcpe_lac_tests", force: :cascade do |t| + t.integer "lac_id" + t.string "test_nm" + t.string "fee_amt" + end + + create_table "lcpe_lacs", force: :cascade do |t| + t.string "facility_code" + t.string "edu_lac_type_nm" + t.string "lac_nm" + t.string "state" + end + create_table "mous", id: :serial, force: :cascade do |t| t.string "ope", null: false t.string "ope6", null: false