feat: Update demographics file with housing statuses. Create housing class. Update survey_item_values.rb to parse housing info. Update cleaner to output housing info.

This commit is contained in:
rebuilt 2025-03-27 15:20:40 -07:00
parent b5b4c3b9a6
commit 3a5a368a35
9 changed files with 66 additions and 14 deletions

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[8.0].define(version: 2025_01_15_011457) do
ActiveRecord::Schema[8.0].define(version: 2025_03_27_205800) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_catalog.plpgsql"
@ -88,6 +88,12 @@ ActiveRecord::Schema[8.0].define(version: 2025_01_15_011457) do
t.index ["slug"], name: "index_genders_on_slug", unique: true
end
create_table "housings", force: :cascade do |t|
t.string "designation"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "incomes", force: :cascade do |t|
t.string "designation"
t.datetime "created_at", null: false