finish up adding socio economic disag filter

This commit is contained in:
rebuilt 2025-06-25 17:12:20 -07:00
parent a258b32b39
commit cab0a3955e
11 changed files with 139 additions and 12 deletions

View file

@ -0,0 +1,5 @@
class AddSocioEconomicStatusToParent < ActiveRecord::Migration[8.0]
def change
add_column :parents, :socio_economic_status, :integer, default: nil
end
end

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_06_24_230522) do
ActiveRecord::Schema[8.0].define(version: 2025_06_25_201425) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_catalog.plpgsql"
@ -399,6 +399,7 @@ ActiveRecord::Schema[8.0].define(version: 2025_06_24_230522) do
t.bigint "housing_id"
t.bigint "education_id"
t.bigint "benefits_id"
t.integer "socio_economic_status"
t.index ["benefits_id"], name: "index_parents_on_benefits_id"
t.index ["education_id"], name: "index_parents_on_education_id"
t.index ["housing_id"], name: "index_parents_on_housing_id"