Skip to content

Commit

Permalink
LCPE: database schema update
Browse files Browse the repository at this point in the history
  • Loading branch information
binq committed Dec 31, 2024
1 parent 5806903 commit 98e37b8
Showing 1 changed file with 52 additions and 1 deletion.
53 changes: 52 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 98e37b8

Please sign in to comment.